home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue60
/
COMThrd
/
MultipleSTAClient.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-05-15
|
358 b
|
23 lines
program MultipleSTAClient;
{ $define MTA}
uses
{$ifdef MTA}
ComObj,
ActiveX,
{$endif}
Forms,
MultipleSTAClientForm in 'MultipleSTAClientForm.pas' {Form2};
{$R *.RES}
begin
{$ifdef MTA}
CoInitFlags := COINIT_MULTITHREADED;
{$endif}
Application.Initialize;
Application.CreateForm(TForm2, Form2);
Application.Run;
end.